home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / kiss-0.11 / kiss-0 / kiss / src / islink.c < prev    next >
C/C++ Source or Header  |  1995-03-23  |  213b  |  15 lines

  1. #include "kiss.h"
  2.  
  3. int islink (char *fname, char *whereto)
  4. {
  5.     register int
  6.     res;
  7.  
  8.     if ( (res = readlink (fname, whereto, FILENAMELEN)) > 0 )
  9.     {
  10.     whereto [res] = '\0';
  11.     return (1);
  12.     }
  13.     return (0);
  14. }
  15.